home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 453 b | 28 lines | [TEXT/CWIE] |
- // DialogManagerUser.cp
-
- #ifndef DialogManagerUser_h
- #include "DialogManagerUser.h"
- #endif
- #ifndef TextEditUser_h
- #include "TextEditUser.h"
- #endif
- #ifndef MenuManagerUser_h
- #include "MenuManagerUser.h"
- #endif
- #ifndef Integers_h
- #include "Integers.h"
- #endif
-
- DialogManagerUser::DialogManagerUser()
- {
- static bool initialized = false;
-
- if ( !initialized )
- {
- MenuManagerUser();
- TextEditUser();
- InitDialogs( 0 );
- initialized = true;
- }
- }
-